home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 2486 < prev    next >
Encoding:
Text File  |  1996-08-06  |  860 b   |  31 lines

  1. Path: I980.ssi.stratus.com!not-for-mail
  2. From: davidm@ssi.stratus.com ()
  3. Newsgroups: comp.lang.c++
  4. Subject: function pointers
  5. Date: 18 Jan 1996 00:51:00 GMT
  6. Organization: Stratus Computer Inc, Marlboro MA
  7. Message-ID: <4dk5hl$2ul@transfer.stratus.com>
  8. Reply-To: David_McReynolds@vos.stratus.com
  9. NNTP-Posting-Host: i980.ssi.stratus.com
  10. X-Newsreader: TIN [UNIX 1.3 950515BETA PL0]
  11.  
  12. I am currently trying to port some C code to C++ on an AIX
  13. platform using xlC.  I want to create a shared library using
  14. the makeC++SharedLib command.  However, it seems that no matter
  15. where I place my
  16.  
  17. #ifdef __cplusplus
  18. extern "C" {
  19.  
  20. stuff the linker cannot find some function pointers I have
  21. declared and defined.
  22.  
  23. Sorry if this is off topic but, I wasn't sure if this was
  24. a C++ thing or not.
  25.  
  26. BTW yes I have read the comp.lang.c++ FAQ section on linking
  27. C and C++.
  28.  
  29. Thanks,
  30. Dave
  31.